Metadata-Version: 2.1
Name: Prolog Code Generator
Version: 0.3.0
Summary: expert system code generator
Home-page: https://github.com/ShootGan/prolog-code-generator
Author: Pawel Nalepka
Author-email: nawelpalepka@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/ShootGan/prolog-code-generator/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Prolog Expert system code generator

Library generate prolog code for expert system from CSV file.

## Installation

`pip install -i pip install Prolog-Code-Generator`

## How to use:
- Create csv file like this:  
| Name | param1 | param2 | param3 |
|------- |-------- |-------- |-------- |
| name1 | good | good | good |
| name3 | bad | bad | bad |

- Go on:
```python
import prolog_code_generator as cg
data = cg.get_template(path = "file_path.csv",delimer = ";")
example = cg.CodeGenerator(data="data")
example.csv_to_code(output_path="output/filename")
```
See more in examples.

## Contribution 
If you wanna contribute just create issue with tag [eq. bug, feture].
If you wanna change something in code create your own branch from dev branch and next create pull request to this branch. 


